home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 015a / dos6file.zip / DOS6.TXT
Text File  |  1993-04-07  |  28KB  |  565 lines

  1. HINT OF THE YEAR!: Do you hate to wait any longer than necessary for 
  2. your computer to boot? Do you want to save 2 seconds every time? Put 
  3. the following line (first, before anything else) in your CONFIG.SYS 
  4. file:     SWITCHES=/F
  5.  
  6. This will eliminate the built in two second delay for loading DOS, 
  7. and get you going faster.
  8.  
  9. Now I suppose you're saying, "Yea, sure. I bet it formats the hard drive 
  10. or something else nasty." Check it out. Look in your DOS 6 manual 
  11. under SWITCHES.
  12.  
  13.                            DOS 6 - THE REAL STORY
  14.  
  15.  
  16.                             by the brother-in-law
  17.  
  18.     OK, so you ran out and got DOS 6. WOW, what a bunch of files. 
  19. But do you REALLY have to keep all those MEGS of junk just to do 
  20. what you need to do? I deleted 1.2 megs of crap just looking around.
  21.     Dos 6.0 has even more things added to it than dos 5 (perhaps 
  22. this is as it should be), but can't you get rid of some baggage you 
  23. don't need? Absolutely!
  24.     With well over 100 files, DOS 6 certainly has alot to offer. But 
  25. you know you'd never use some of it, if you could figure out what it 
  26. all does. To find out what you do and don't need, read through the 
  27. following list, and see if you can delete things that just don't do 
  28. anything for you.
  29.     A MEG of hard drive space is a terrible thing to waste, and
  30. deleting files you don't use is the cheapest way to increase storage.
  31. Besides, you can always reinstall (expand) a file from your dos
  32. disks should you someday need something you've deleted.
  33.     The following listing should pretty well match up with your
  34. directory, especially if you use a dos shell that alphabetizes the
  35. files for your convenience.
  36.     Before you actually delete anything that you don't think you 
  37. nee/want, make life easy on yourself. Just move the files to a new 
  38. directory named DOSJUNK, and wait a couple weeks. If nothing 
  39. crashes, and all your batch files work, and you don't get that 
  40. mysterious "File not found" error when booting up, then DELTREE that 
  41. directory. If you have problems, you can always copy a particular 
  42. file back into the DOS directory, and kill the rest of them later.
  43.     By reading this list, you may learn a few tricks of DOS 6's new
  44. features (like MEMMAKER). The expanded online dos help, and your DOS 
  45. 6 User's Guide (you really didn't pirate DOS 6, did you?) you should 
  46. have a good grip on those mysterious files. What is some of this 
  47. stuff, anyway?
  48.  
  49.  
  50. .            <DIR>     So you always wondered what the DOT directory 
  51. was, but didn't know who to ask? Consider it to be the equivalent of 
  52. a table of contents for the directory it resides in. Unlike as in a 
  53. book, if you delete this DOT, you've in effect deleted your table of 
  54. contents. Dos says that if your table of contents is empty, then 
  55. your directory is empty. Delete DOT, and you've deleted ALL your 
  56. files. This is a nice shortcut sometimes. Instead of using DEL *.* 
  57. to delete everything, you can type DEL . (you don't even need the 
  58. space between DEL and the dot) and you'll get the old "are you sure"
  59. prompt, just the same. Many other dos commands will work using the 
  60. DOT, such as COPY and XCOPY.
  61.  
  62.  ..           <DIR>     DOUBLE DOT is the little trail of bread 
  63. crumbs that dos uses to find its way back to the root directory. You 
  64. can't mess with it, so don't try.
  65.  
  66.     ANSI.SYS bytes=9065 This is a device driver used to redefine 
  67. keys, control cursor postitioon, and create lots of neat colors on 
  68. the screen, when used in conjunction with the MODE command. Store it 
  69. in your CONFIG.SYS file as: DEVICE=C:\DOS\ANSI.SYS. This device 
  70. driver must be loaded by a <DEVICE> or <DEVICEHIGH> command in 
  71. your CONFIG.SYS file. Keep it.
  72.  
  73.     APPEND.EXE bytes=10774 JUNK! Enables programs to open data 
  74. files in specified directories as if the files were in the current 
  75. directory (kind of like the path statement). Do not use this command 
  76. when you are running Windows. The specified directories are called 
  77. appended directories because, for the sake of opening data files, 
  78. they can be found as if they were appended to the current directory. 
  79. Don't back it up - kill it. Even if you do use old programs, you're 
  80. better off writing batch files that use PATH and SUBST to solve the 
  81. problem. Delete it.
  82.  
  83.         ATTRIB.EXE bytes=11165  Displays or changes file attributes. 
  84. This command displays, sets, or removes the Read-Only, Archive, 
  85. System, and Hidden attributes assigned to files or directories. 
  86. Syntax: 
  87.        ATTRIB [+a] [-a] [+h] [-h] [+r] [-r] [+s] [-s]
  88. where: "+a,-a" serves to set or remove the file's archive attribute 
  89. (used for backing up or copying modified files only); "+h,-h" severs 
  90. to hide or unhide a file (e.g., type: ATTRIB +H RESUME.DOC to hide 
  91. your resume); and "+r,-r" serves to set or remove a file's read-only 
  92. attribute.
  93.     Using ATTRIB +R \*.EXE /S will protect all EXE files on the 
  94. current drive from modification or erasure. Unfortunately, making a 
  95. file read-only will not protect it from viruses, since the virus 
  96. creators just reset this attribute bit. Keep it.
  97.  
  98.         CHKDSK.EXE bytes=12908 Keep it. Checks the status of a 
  99. disk and displays a status report. Can also fix disk errors. The 
  100. status report shows logical errors found in the MS-DOS filing 
  101. system, which consists of the file allocation table and directories. 
  102. It will check for errors such as lost clusters and lost allocation 
  103. units; displays formatted disk size and the number of bad sectors; 
  104. tells whether a file is fragmented, and the amount of conventional 
  105. memory installed and available. The only thing screwy about it is 
  106. that if you have lost clusters, it offers to fix them and then 
  107. doesn't - unless you first type: CHKDSK/F.
  108.  
  109.         CHKSTATE.SYS bytes=41600 This file is used by MEMMAKER to 
  110. check out your computer. After you've run MEMMAKER, it's useless and 
  111. can be deleted.
  112.  
  113.         CHOICE.COM bytes=1754 Prompts the user to make a choice in 
  114. a batch program. Displays a specified prompt and pauses for the user 
  115. to choose from among a specified set of keys. You can use this 
  116. command only in batch programs. If you write a batch file now and 
  117. then, it's a keeper.
  118.  
  119.         COMMAND.COM bytes=52925 This is DOS's primary command 
  120. processor, which includes all internal DOS commands, and it is 
  121. fundamental to running MS-DOS. If you delete it, the computer 
  122. dies. 'Nuff said.
  123.  
  124.     COUNTRY.SYS bytes 17066 If you use non-U.S. country 
  125. types and symbols for things like currency, date, and time, then 
  126. install COUNTRY.SYS in your CONFIG.SYS file. If you only use U.S. 
  127. codes and symbols, delete it.
  128.  
  129.         DBLSPACE.BIN bytes=50284 A hard drive compression utility 
  130. that compressed your files as they are written to your drive, and 
  131. uncompresses them as they are read. If you don't use it, delete 
  132. DBLSPACE.* and save nearly half a meg.
  133.         DBLSPACE.EXE bytes=273068 see above
  134.         DBLSPACE.HLP bytes=72173 see above
  135.         DBLSPACE.INF bytes=2166 see above
  136.         DBLSPACE.SYS bytes=339 see above
  137.         DBLWIN.HLP bytes=8597 this one can go too, if you don't use 
  138. the above.
  139.  
  140.     DEBUG.EXE bytes=15715 Use it to test and debug executable 
  141. files. Also used in some software cracks. If you don't do that sort 
  142. of thing, delete it.
  143.  
  144.         DEFRAG.EXE bytes=75017 Sectors on your hard disk are filled 
  145. in order, from first to last. As files get deleted, then new ones 
  146. added, they get scattered into several fragments as they fill the 
  147. empty sectors first, then jump to the next empty sectors. DEFRAG 
  148. will arrange your files so they are stored on your drive in the same 
  149. order as written. This makes loading faster, and reduces wear on the 
  150. drive. A nice side effect is the alphabetization of your directories 
  151. and getting the directories listed before the individual files. 
  152. Makes finding stuff a lot faster and easier. Run it every couple 
  153. weeks if you use your computer much. Definitely a keeper.
  154.  
  155.         DEFRAG.HLP bytes=9227 Help file for the above.
  156.  
  157.     DELOLDOS.EXE bytess=17710 A utility to get rid of your old dos 
  158. directory which was created when you updated to DOS 6. You can do 
  159. the same thing by deleting the files, then using RD to remove the 
  160. directory, or using DELTREE below. Delete it.
  161.  
  162.         DELTREE.EXE bytes=10565 Deletes a directory and all the 
  163. files and subdirectories that are in it. Finally, DOS does it right. 
  164. This works like PRUNE in XTGOLD. Be careful. Once you delete 
  165. something in a directory, then delete the directory, it's gone, and 
  166. undelete won't get it back. (Norton Utilities will, but that's some 
  167. serious messing around). Keep it.
  168.  
  169.         DISKCOMP.COM bytes=10620 This command performs a 
  170. track-by-track comparison of two floppy disks. Rarely useful, it's 
  171. up to you to keep/delete, but I got rid of it.
  172.  
  173.         DISKCOPY.COM bytes=11879 Copies the entire contents of one 
  174. floppy disk to another floppy disk, track by track, sector by 
  175. sector. This only works if both disk are the same size and density. 
  176. There are other programs that will copy between drives and disks of 
  177. different sizes (POLYCOPY is a good shareware version).This can save 
  178. you from having to make a SYS disk then copying your files to it 
  179. when you need to copy a sys disk. Useful for copying, keep it.
  180.  
  181.         DISPLAY.SYS bytes=15789 Enables you to display international 
  182. character sets on EGA, VGA, and LCD monitors. This device driver 
  183. must be loaded by a <DEVICE> or <DEVICEHIGH> command in your CONFIG.
  184. SYS file. If you only use U.S. English, delete it.
  185.  
  186.         DOSHELP.HLP bytes=5667 Part of the HELP system. If you don't 
  187. use HELP, you don't know what you're missing.
  188.  
  189.         DOSKEY.COM bytes=5883 The Doskey program recalls MS-DOS 
  190. commands and enables you to edit command lines and create and run 
  191. macros. Try it, you'll like it. A must keep.
  192.  
  193.         DOSSHELL.COM bytes=4620 Part of dosshell (no shit!). A 
  194. Windows-like file and disk manager that works great if you don't 
  195. like to work from the command prompt. The main stuff you can do from 
  196. command prompt you can do here, without any intimidation for less 
  197. experienced users.If you don't use dosshell, type: DELETE DOSSHELL.*
  198.         DOSSHELL.EXE bytes=236378 see above
  199.         DOSSHELL.GRB bytes=4421 see above
  200.         DOSSHELL.HLP bytes=161323 see above
  201.         DOSSHELL.INI bytes=11882 see above
  202.         DOSSHELL.VID bytes=9462 see above
  203.  
  204.         DOSSWAP.EXE bytes=18756 Every time you swap between 
  205. applications using Task Switcher (in DOSSHELL), the current 
  206. application's state is written to disk, creating a temporary file 
  207. called DOSSWAP.EXE. If you use DOS Shell and Task Swapper, keep it; 
  208. otherwise, delete it.
  209.  
  210.         DRIVER.SYS bytes=5406 A device driver for use with certain 
  211. external and some non-standard drives. If you don't use drives that 
  212. require it, delete it.
  213.  
  214.         EDIT.COM bytes=413 A useful ascii editor with lots of 
  215. features. I prefer to use XTGOLD's editor, but keep it anyway.
  216.  
  217.         EDIT.HLP bytes=17898 help for above (REALLY!)
  218.  
  219.         EGA.CPI bytes=58870 Used with the MODE command to display 
  220. national character symbols on EGA and VGA symbols. If you got rid 
  221. of the rest of these type files, get rid of this one, too.
  222.  
  223.         EGA.SYS bytes=4885 Saves and restores the display when the 
  224. MS-DOS Shell Task Swapper is used with EGA monitors. If you don't 
  225. have an EGA monitor, delete it.
  226.  
  227.         EMM386.EXE bytes=115294 Provides access to the upper memory 
  228. area and uses extended memory to simulate expanded memory. This 
  229. device driver must be loaded by a <DEVICE> command in your CONFIG.
  230. SYS file and can be used only on computers with an 80386 or higher 
  231. processor. A definite keeper unless you're still on an 8088 or 286 
  232. machine.
  233.  
  234.         EXPAND.EXE bytes=16129 Used to uncompress your original dos 
  235. files from the dos install disks. As they are, on the disk, they're 
  236. unusable. They must be expanded to be used, so keep this one. You 
  237. never know when you might need one of the "junk" files you're deleting 
  238. now.
  239.  
  240.         FASTHELP.EXE bytes=11481 Displays a list of all MS-DOS 6 
  241. commands and gives a brief explanation of each. The information that 
  242. the FASTHELP command displays is similar to, but less detailed than, 
  243. the information found in MS-DOS Help, so I just kept the other and 
  244. got rid of this one.
  245.  
  246.         FASTOPEN.EXE bytes=12034 FASTOPEN buffers the File 
  247. Allocatioon Table and directory structure by creating a cache of 
  248. recently used directories and filenames. Use it with Smartdrive to 
  249. improve disk access speed. It may cause problems with some 
  250. applications software. Try it, if it works, keep it.
  251.  
  252.         FC.EXE bytes=18650 File Compare. Compares two files and 
  253. displays the differences between them. If you don't do that, don't 
  254. keep this.
  255.  
  256.         FDISK.EXE bytes=29333 Use FDISK to create logical hard disk 
  257. partitions. FDISK is also used to create partitions for running DOS 
  258. and another operating system, such as Unix or OS/2 [gag]. Remember, 
  259. creating or changing partitions using FDISK destroys underlying 
  260. data, so always backup your drive before using FDISK. Keep it.
  261.         
  262.         FIND.EXE bytes=6,770 One of three DOS filters used in batch 
  263. files, it searches files for contents which are then redirected to 
  264. another file. Delete it if you don't think you ever will do that.
  265.  
  266.         FORMAT.COM bytes=22717 The FORMAT command creates a new root 
  267. directory and file allocation table for the disk. It can also check 
  268. for bad areas on the disk, and it can delete all data on the disk. 
  269. In order for MS-DOS to be able to use a new disk, you must first use 
  270. this command to format the disk. I like to use ConFormat, which will 
  271. format a disk while you and your computer do something else. Format 
  272. is slow, and there are substitutes, but keep it anyway.
  273.  
  274.         GRAPHICS.COM bytes=19694 Loads a program into memory that 
  275. allows MS-DOS to print the information displayed on your screen.
  276. Use the GRAPHICS command only if you are using a color or graphics 
  277. adapter. Supports CGA through VGA. Keep it.
  278.  
  279.         GRAPHICS.PRO bytes=21232 Data file for GRAPHICS.COM. Keep 
  280. both or neither.
  281.  
  282.         HELP.COM bytes=413 When you get back to the dos prompt, type 
  283. HELP and get enough information about dos and its commands to make a 
  284. small book. One of the best sources of information you have. Now, 
  285. the trick: You must have QBASIC.EXE to run HELP. KEEP IT!
  286.  
  287.         HELP.HLP bytes=294741 A big file, yes, but keep it if you 
  288. want to use the HELP command.
  289.  
  290.         HIMEM.SYS bytes=14224 HIMEM is an extended-memory manager 
  291. that coordinates the use of your computer's extended memory, 
  292. including the high memory area (HMA), so that no two applications or 
  293. device drivers use the same memory at the same time. If you have a 
  294. 386 or above, keep it and use it.
  295.  
  296.         INTERLNK.EXE bytes=17197  Kind of like LapLink, it connects 
  297. two computers via parallel or serial ports and enables the computers 
  298. to share disks and printer ports. For example, you could connect a 
  299. laptop computer to a desktop computer and share files. Keep it if 
  300. you use it.
  301.  
  302.         INTERSVR.EXE bytes=37314 Starts the Interlnk server. See 
  303. above.
  304.  
  305.         KEYB.COM bytes=14983 Starts the Keyb program, which 
  306. configures a keyboard for a specific language (other than U. S. 
  307. English). Delete it if you only use U. S. English.
  308.  
  309.         KEYBOARD.SYS bytes=34694 Despite its SYS extension, 
  310. KEYBOARD.SYS is really the data file for KEYBOARD.COM. If you need 
  311. foreign keyboard characters, keep it. Otherwise, delete it.
  312.  
  313.         LABEL.EXE bytes=9390 Creates, changes, or deletes the volume 
  314. label (name) of a disk. Keep it.
  315.  
  316.         LOADFIX.COM bytes=1131 Some early programs were designed 
  317. to load after the first 64K of memory because dos was already using 
  318. that area. Now that dos loads into upper mem, they may or may not run. 
  319. This program forces them to load after the first 64K block, so 
  320. they'll run right. Keep it. You just never know when you'll get a 
  321. "Packed file is corrupt" message. If you do, run this file and try 
  322. it again.
  323.  
  324.         MEM.EXE bytes=32150 A memory mapping program, it tells you 
  325. what programs are in memory, where they are and how much RAM they 
  326. take. Great for tweaking your system. Keep it.
  327.  
  328.         MEMMAKER.EXE bytes=118628 DOS 6's new, automatic 
  329. configuration program. This will configure your system for the 
  330. maximum performance and use of upper and EMS/XMS memory. It usually 
  331. only needs run once at setup, but if you enjoy tweaking, keep it 
  332. anyway. If you don't mess with what you don't understand, learn 
  333. about it. After you've used it, you can delete it.
  334.  
  335.         MEMMAKER.HLP bytes=17081 Help file for the above.
  336.  
  337.         MEMMAKER.INF bytes=1642 This file is used to tell memmaker 
  338. to ignore certain programs when it configures your machine. See 
  339. above.
  340.  
  341.         MODE.COM bytes=23521 Configures system devices. The MODE 
  342. command performs many different tasks, such as displaying system 
  343. status, changing system settings, or reconfiguring ports or devices. 
  344. If you don't do that stuff, delete it.
  345.  
  346.         MONOUMB.386 bytes=8783 If you want to use the monochrome 
  347. video area in upper mem for loading programs, this is the trick. 
  348. Keep it only if you use it, and chances are, you won't.
  349.  
  350.         MORE.COM bytes=2546 Used in conjunction with other commands 
  351. to display one screen of text at a time. for example, the line 
  352. MEM/C|MORE will display memory information one screen at a time. 
  353. Keep it.
  354.  
  355.         MOVE.EXE bytes=17371 It's about time. This will let you move 
  356. a program from one directory to another, not just by copying the 
  357. file then deleting the old one, but by changing the file's pointers 
  358. so that it now resides in a different directory. I moved 3 one meg 
  359. files in 1 second, and didn't need free space to make the copies 
  360. before the old files were deleted because it didn't copy them. It 
  361. just changed the File Allocation Table listing to reflect their new 
  362. home.
  363.   
  364. Syntax 
  365.     MOVE [drive:][path]filename[,[drive:][path]filename[...]] destination 
  366.   
  367. The MOVE command also renames directories.
  368.  
  369. Syntax
  370.     MOVE C:\oldname c:\newname
  371.  
  372. Absolutely, keep it.
  373.  
  374.     MSAV.EXE bytes=172198 Scans your computer for known viruses. 
  375. If you live in fear of a sick computer and don't have anything else, 
  376. keep it and use it.
  377.  
  378.         MSAV.HLP bytes=23891 Help file for above. NO, REALLY?
  379.         MSAVHELP.OVL bytes=29828 see above
  380.         MSAVIRUS.LST bytes=35520 see above
  381.  
  382.         MSBACKDB.OVL bytes=63306 Part of the new MSBACKUP program, 
  383. it's still not as good as many commercial programs at backing up 
  384. your hard drive, but it's far superior to the old BACKUP/RESTORE, 
  385. which had a nasty habit of committing suicide on you after it 
  386. murdered your files. Keep it if you use it.
  387.         MSBACKDR.OVL bytes=67146 see above
  388.         MSBACKFB.OVL bytes=68730 see above
  389.         provided through the courtesy of the-brother-in-law
  390.         MSBACKFR.OVL bytes=72714 see above
  391.         MSBACKUP.EXE bytes=5506 see above
  392.         MSBACKUP.HLP bytes=314236 see above
  393.         MSBACKUP.OVL bytes=133952 see above
  394.         MSBCONFG.HLP bytes=45780 see above
  395.         MSBCONFG.OVL bytes=47210 see above
  396.  
  397.         MSCDEX.EXE bytes=25377 Provides access to CD-ROM drives. 
  398. MSCDEX can be loaded from your AUTOEXEC.BAT file or from the command 
  399. prompt. (The device driver that came with your CD-ROM drive must be 
  400. loaded from your CONFIG.SYS file.) If it sounds like this has 
  401. potential for problems, you're right. If you have a CD rom drive, 
  402. better find out if you need this one. Let the battle begin.
  403.   
  404.         MSD.EXE bytes=158470 Kind of like CHECKIT, this will tell 
  405. you all about your system, video, processors, ports, ram, etc. If 
  406. you like that sort of thing, keep it.
  407.  
  408.         MSTOOLS.DLL bytes=13424 Part of the MSTOOLS for windows stuff.
  409.  
  410.         MWAV.EXE bytes=142640 Anti virus for windows. If you use it, 
  411. keep it.
  412.     MWAV.HLP bytes=25663 see above
  413.         MWAVABSI.DLL bytes=54576 see above
  414.         MWAVDLG.DLL bytes=36368 see above
  415.         MWAVDOSL.DLL bytes=44736 see above
  416.         MWAVDRVL.DLL bytes=7744 see above
  417.         MWAVMGR.DLL bytes=21712 see above
  418.         MWAVSCAN.DLL bytes=151568 see above
  419.         MWAVSOS.DLL bytes=7888 see above
  420.         MWAVTSR.EXE bytes=17328 see above
  421.  
  422.         MWBACKF.DLL bytes=14560 Backup for windows. If you use 
  423. backup and windows, this one's for you.
  424.         MWBACKR.DLL bytes=111120 see above
  425.         MWBACKUP.EXE bytes=309024 see above
  426.         MWBACKUP.HLP bytes=400880 see above
  427.  
  428.     MWGRAFIC.DLL bytes=6944 Another file for your Windows ToolKit
  429.  
  430.         MWUNDEL.EXE bytes=130496 Undelete for windows
  431.         MWUNDEL.HLP bytes=35741 help file for above
  432.  
  433.     NETWORKS.TXT bytes=21450 Info on making your network 
  434. compatible with DOS 6. If you don't have a network, delete this.
  435.  
  436.         NLSFUNC.EXE bytes=7036 Loads country-specific information for 
  437. national language support (NLS). If you use U. S. English only, 
  438. delete it.
  439.  
  440.         POWER.EXE bytes=052 Ya know those power saving laptop 
  441. computers? This is for them. It reduces power consumption when 
  442. applications and devices are idle for computers that conform to the 
  443. Advanced Power Management (APM) specification. Unless you need it, 
  444. dump it.
  445.  
  446.         PRINT.EXE bytes=15640 Prints a text file while you are using 
  447. other MS-DOS commands. This command can print in the background 
  448. while you and your computer do something else. Keep it, for sure.
  449.  
  450.         QBASIC.EXE bytes=194309 No, no GORILLA.BAS program this 
  451. time. Does anyone still use basic to write programs? Delete it 
  452. UNLESS you use HELP. HELP requires this program to run.
  453.         QBASIC.HLP bytes=130881 see above
  454.  
  455.         RAMDRIVE.SYS bytes=5873 Uses part of your computer's 
  456. random-access memory (RAM) to simulate a hard disk drive. This 
  457. device driver must be loaded by a <DEVICE> or <DEVICEHIGH> command 
  458. in your CONFIG.SYS file. Once a RAM drive is created, it is assigned 
  459. a drive letter and it behaves like a disk drive, except that it is 
  460. volatile. Should you turn off the PC or lose power, then whatever is 
  461. on the drive is history. Keep it if you have enough ram to use it.
  462.  
  463.     README.TXT bytes=57349 Notes on Dos 6. You never know when 
  464. you might need to know something here, but if you've never read it 
  465. before, chances are you don't need it now. Check it out, then delete.
  466.  
  467.         REPLACE.EXE bytes=20226 A useful commands, REPLACE 
  468. can be used to update (or replace) existing files in the destination 
  469. directory, or just add new files without overwriting existing ones. 
  470. Lots of great switches; check it out.
  471.  
  472.         RESTORE.EXE bytes=38294 Used to bring back (sometimes) 
  473. earlier dos backups, this file is included for backwards 
  474. compatibility. If you didn't use BACKUP before, you don't need 
  475. RESTORE now. Bang. Zoom. To the moon, it's gone.
  476.  
  477.         SETVER.EXE bytes=12015 Some software was designed to ask 
  478. your computer what release of DOS you were running. It may have 
  479. wanted DOS 3.2, and wouldn't run on DOS 2.0. Nobody thought about a 
  480. DOS 4, 5, or 6, so when the answer comes back as anything but 3, the 
  481. software won't work. This program is used to lie to your programs 
  482. when they ask what DOS version you're running. If your software 
  483. thinks it will only run under DOS 3, and you're on DOS 6, SETVER can 
  484. be used to tell your program it's running DOS 3 when it asks. Useful 
  485. for old, or odd software. I've never needed it...
  486.  
  487.         SHARE.EXE bytes=10912 Used primarily on networks, SHARE 
  488. provides for file sharing and record-locking capabilities. Even if 
  489. you're not on a netwwork, some applications - such as ObjectVision 2.
  490. 0 - require it for file sharing. Keep it.
  491.  
  492.         SIZER.EXE bytes=7169 Used by the MemMaker memory 
  493. optimization program to determine the size in memory of device 
  494. drivers and memory-resident programs. When you're done with 
  495. MEMMAKER, you're done with this program.
  496.  
  497.         SMARTDRV.EXE bytes=42073 The latest version, and a good 
  498. improvement. Loads the SMARTDRV.EXE device driver to perform double 
  499. buffering. Double buffering provides compatibility for certain 
  500. hard-disk controllers that cannot work with memory provided by 
  501. EMM386 or Windows running in 386 enhanced mode. To find out whether 
  502. you need to use double buffering, see <SMARTDRV.EXE──Notes>. Replace 
  503. your old SMARTDRV file with this one. Don't let the terminology 
  504. confuse you. Chances are, SMARTDRV.EXE will greatly benefit your 
  505. computer. Keep it.
  506.  
  507.         SMARTMON.EXE bytes=28672 Windows program, Smartdrive 
  508. Monitor. Lets you control, adjust and monitor your SMARTDRV.EXE 
  509. program to see how it's doing. Nice, but not NEEDED.
  510.         SMARTMON.HLP bytes=10727 help file for above
  511.  
  512.         SORT.EXE bytes=6922 Want your directory list alphabetized 
  513. when you see it? Use DOSKEY and SORT to make a macro to save the 
  514. keystrokes, or type DIR > SORT. Useful and time saving. Keep it.
  515.  
  516.         SUBST.EXE bytes=18478 Substitutes a drive letter for a
  517. directory name, or one drive for another. SUBST is necessary for 
  518. really old programs that don't understand subdirectories, such as 
  519. DPS III+. It's also useful with the PATH command to replace 
  520. references to really long, or nested, subdirectories. If you have 
  521. something on your hard drive that needs to be installed from a 
  522. floppy, use the SUBST command to make your computer think it's 
  523. reading the A: drive when it installs from another directory on C:.
  524. Note: To use drive letters greater than E, add the LASTDRIVE command 
  525. to your CONFIG.SYS file. Keep it.
  526.  
  527.         SYS.COM bytes=9379 Makes a disk bootable by copying 
  528. COMMAND.COM and two invisible files: IO.SYS (or IBMBIO.SYS) and 
  529. MSDOS.SYS (or IBMDOS.SYS) to a floppy. KEEP IT.
  530.  
  531.         TREE.COM bytes=6898 Displays a listing of a disk's directory 
  532. structure, including files, with the /F switch. More than anything 
  533. else, this program will give you a visual representation of 
  534. directories and help you understand their structure. Keep it.
  535.  
  536.         UNDELETE.EXE bytes=26420 While this program does restore 
  537. files that were previously deleted by using the <DEL> command it 
  538. also has three levels of protecting files against accidental 
  539. deletion── Delete Sentry, Delete Tracker, and Standard. Learn to use 
  540. this one. Success rates are better the sooner you try it after the 
  541. deletion in Standard mode. If you regularly say OH SHIT!, then set 
  542. up the Delete Sentry system. It'll save your butt someday. KEEP IT.
  543.  
  544.         UNFORMAT.COM bytes=12738 Like undelete, it can bring back 
  545. files you thought were gone. FORMAT usually checks to see if your 
  546. disk and it's existing format are good. It doesn't really erase all 
  547. the files unless you tell it to (through switches). UNFORMAT may/may 
  548. not get your files back; it all depends. KEEP IT.
  549.  
  550.         VFINTD.386 bytes=5295 Part of windows anti viral software. 
  551. Use the others, and you'll need this one.
  552.  
  553.         VSAFE.COM bytes=62576 Anti Virus software. If you want to 
  554. try to stop virus problems, use it. Keep it.
  555.  
  556.         WNTOOLS.GRP bytes=3741 Part of the windows toolbox
  557.  
  558.         XCOPY.EXE bytes=15820 Hey, you don't know what you're 
  559. missing. This little understood program copies files, including 
  560. those in multiple subdirectories. It does everything that the internal 
  561. command COPY can do - but more and faster. Check it out. Good 
  562. switch support. Keep it.
  563.  
  564. Hey. I spent a lot of time compiling this list. All I ask is that 
  565. the name "the brother-in-law" be left intact in this file. Thanks.